home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Headers / bsd / i386 / vmparam.h < prev   
Text File  |  1995-02-14  |  811b  |  39 lines

  1. /* 
  2.  * HISTORY
  3.  * 05-Mar-89  Avadis Tevanian, Jr. (avie) at NeXT
  4.  *    Make MAXDSIZ infinity.
  5.  *
  6.  * 12-Aug-87  John Seamons (jks) at NeXT
  7.  *    Ported to NeXT.
  8.  */ 
  9.  
  10. #ifndef    _BSD_I386_VMPARAM_H_
  11. #define    _BSD_I386_VMPARAM_H_ 1
  12.  
  13. #import <sys/resource.h>
  14.  
  15.  
  16. /*
  17.  * Virtual memory related constants, all in bytes
  18.  */
  19. #ifndef DFLDSIZ
  20. #define    DFLDSIZ        (6*1024*1024)        /* initial data size limit */
  21. #endif
  22. #ifndef MAXDSIZ
  23. #define    MAXDSIZ        (RLIM_INFINITY)        /* max data size */
  24. #endif
  25. #ifndef    DFLSSIZ
  26. #define    DFLSSIZ        (512*1024)        /* initial stack size limit */
  27. #endif
  28. #ifndef    MAXSSIZ
  29. #define    MAXSSIZ        MAXDSIZ            /* max stack size */
  30. #endif
  31. #ifndef    DFLCSIZ
  32. #define DFLCSIZ        (0)            /* initial core size limit */
  33. #endif
  34. #ifndef    MAXCSIZ
  35. #define MAXCSIZ        (RLIM_INFINITY)        /* max core size */
  36. #endif    MAXCSIZ
  37.  
  38. #endif    _BSD_I386_VMPARAM_H_
  39.